Código fuente de 'Propiedades navegador.asp'

<html>
<head>
<title>Propiedades del navegador - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>

<p align="center"><b><font size="3">Propiedades del navegador</font></b></p>
<br>

<% Set bc = Server.CreateObject("MSWC.BrowserType") %> 
Nombre del navegador: <%=bc.browser %><p> 
&nbsp;Versión del navegador: <%=bc.version%><p>

<% if (bc.frames = TRUE) then %> 
Tu navegador acepta marcos<p>
<% else %>
Tu navegador no acepta marcos<p>
<% end if %>

<% if (bc.tables = TRUE) then %>Tu navegador acepta tablas<p>
<% else %>
Tu navegador no acepta tablas<p>
<% end if %>

<% if (bc.BackgroundSounds = TRUE)then %>Tu navegador acepta música<p>
<% else %>
Tu navegador no acepta música<p>
<% end if %>

<% if (bc.vbscript = TRUE) then %>Tu navegador acepta Vbscript<p>
<% else %>
Tu navegador acepta Vbscript<p>
<% end if %>

<% if (bc.javascript = TRUE) then %>Tu navegador acepta JScript<p>
<% else %>
Tu navegador no acepta JScript<p>
<%
end if
set bc=nothing
%></body></html>